From 8a703cb39ff23ff3639b0da33f0d72f92f1cc55b Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 16 Dec 2021 23:20:58 +0100 Subject: chore: create thematic page view For now I have to repeat some markup/styles, I cannot reuse PostsList component. WP GraphQL does not offer edges for ACF Post2Post or filters to get thematic posts with another way. I should create custom fields in backend to improve the posts fetching. --- src/pages/thematique/[slug].tsx | 77 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 src/pages/thematique/[slug].tsx (limited to 'src/pages/thematique/[slug].tsx') diff --git a/src/pages/thematique/[slug].tsx b/src/pages/thematique/[slug].tsx new file mode 100644 index 0000000..1919b59 --- /dev/null +++ b/src/pages/thematique/[slug].tsx @@ -0,0 +1,77 @@ +import Layout from '@components/Layouts/Layout'; +import PostPreview from '@components/PostPreview/PostPreview'; +import { t } from '@lingui/macro'; +import { + fetchAllThematicsSlug, + getThematicBySlug, +} from '@services/graphql/taxonomies'; +import { NextPageWithLayout } from '@ts/types/app'; +import { ThematicProps } from '@ts/types/taxonomies'; +import { loadTranslation } from '@utils/helpers/i18n'; +import { GetStaticPaths, GetStaticProps, GetStaticPropsContext } from 'next'; +import { ParsedUrlQuery } from 'querystring'; +import { ReactElement } from 'react'; +import styles from '@styles/pages/Thematic.module.scss'; + +const Thematic: NextPageWithLayout = ({ thematic }) => { + const getPostsList = () => { + return thematic.posts.reverse().map((post) => ( +
  • + +
  • + )); + }; + + return ( +
    +
    +

    {thematic.title}

    +
    +
    +
    + {thematic.posts.length > 0 && ( +
    +

    {t`All posts in ${thematic.title}`}

    +
      {getPostsList()}
    +
    + )} +
    + ); +}; + +Thematic.getLayout = function getLayout(page: ReactElement) { + return {page}; +}; + +interface PostParams extends ParsedUrlQuery { + slug: string; +} + +export const getStaticProps: GetStaticProps = async ( + context: GetStaticPropsContext +) => { + const translation = await loadTranslation( + context.locale!, + process.env.NODE_ENV === 'production' + ); + const { slug } = context.params as PostParams; + const thematic = await getThematicBySlug(slug); + + return { + props: { + thematic, + translation, + }, + }; +}; + +export const getStaticPaths: GetStaticPaths = async () => { + const allSlugs = await fetchAllThematicsSlug(); + + return { + paths: allSlugs.map((post) => `/thematique/${post.slug}`), + fallback: true, + }; +}; + +export default Thematic; -- cgit v1.2.3